安装
MacPort 官网地址:
https://www.macports.org/install.php
下载对应的版本进行安装.
使用教程详见: https://guide.macports.org/
快速开始
检索
port search --name --glob 'php*'
安装
port install portname
如果出现无法访问 port 命令
检测环境变量
/opt/local/sbin/
/opt/local/bin/
如果没有的话
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
一般情况会自动添加, 但是我使用 zsh 就没有自动…
- 如果环境变量没问题, 请重启命令行工具
常用命令
port selfupdate
自我更新
查找包
port search --name --glob 'php*'
port search --name --line --glob 'php*'
port search --name --line --regex '^php\d*$'
安装包
port install apache2
port deps apache2
包的依赖关系port clean portname
安装某包出错后, 重新安装之前先 clean 一下port uninstall portname
卸载
当前信息
port installed
已安装port outdated
过时的port dependents
依赖关系port info
包的维护人员等的信息